home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.19950528-19950726 / 000235_news@columbia.edu_Wed Jun 28 01:38:03 1995.msg < prev    next >
Internet Message Format  |  1995-07-31  |  4KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10442
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Jun 1995 02:52:40 -0400
  3. Received: by apakabar.cc.columbia.edu id AA19896
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Jun 1995 02:52:38 -0400
  5. Path: news.columbia.edu!panix!bloom-beacon.mit.edu!usc!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  6. From: jrd@cc.usu.edu (Joe Doupnik)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: Scrambled Characters in Telnet Session
  9. Message-Id: <1995Jun28.073803.54848@cc.usu.edu>
  10. Date: 28 Jun 95 07:38:03 MDT
  11. References: <3sd3j2$2fr1@news-s01.ny.us.ibm.net> <1995Jun22.212304.54526@cc.usu.edu> <1995Jun26.173752.6036@tron.bwi.wec.com>
  12. Organization: Utah State University
  13. Lines: 87
  14. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15.  
  16. In article <1995Jun26.173752.6036@tron.bwi.wec.com>, hendri1@ibm.net (Stan Hendrix) writes:
  17. > In article <1995Jun22.212304.54526@cc.usu.edu>, jrd@cc.usu.edu (Joe Doupnik) says:
  18. >>
  19. >>In article <3sd3j2$2fr1@news-s01.ny.us.ibm.net>, hendri1@ibm.net        (Stan Hendrix) writes:
  20. >>> I get scrambled characters after hitting return key whenever I telnet to coin.missouri.edu.
  21. >>> I have tried several different terminal types - vt100, vt220, ansi - as well as 
  22. >>> various NEWLINE-MODE settings.  Nothing works.  
  23. >>---------
  24. >>        Haven't the vaguest. Coin.missouri.edu isn't in a nameserver that
  25. >>I tried. 
  26. > It is also known as bigcat.missouri.edu
  27. >>        a) What Kermit and version number
  28. > MS-DOS, v3.14
  29. >>        b) What terminal type the host is using
  30. > Not sure.  When you get to the government access center the default terminal is VT100
  31. >>        c) What those scrambled characters look like (because I can't 
  32. >>reproduce a connection from my place)
  33. > When I hit the enter key I get strings of characters that look like this:
  34. >     ][^235[].
  35.  
  36.     Or perhaps like this?
  37.  
  38.   <<< Main Menu >>>
  39.  
  40.   1 About COIN, Registration, and Help Desk
  41.   2 Post Office (E-mail and File Management)
  42.   3 School House
  43.   4 Library Center
  44.   5 Government Center
  45.   6 College, University, and Extension Center
  46.   7 Community and Social Services Center
  47.   8 Public Square
  48.   9 News Stand
  49.  10 Reference and Information Center
  50.  11 Internet Services
  51.  12 COIN will be down for one week of maintenance starting July 10
  52. ---------------------------------------------------------------
  53.  p = Previous Menu   x = Exit COIN   "go help" = extended help
  54.  m = Main Menu       h = Help         
  55.  
  56.  Your Choice ==> ^[[?63;1;2;4;6;8;9;15;22c
  57.  
  58.     The ^[[?63 etc text above is exactly as shown, that's a caret
  59. and so on. The string is from Kermit, and it is the response to a "CSI c"
  60. (aka  ESC [ c) terminal identification request from the host. The remote
  61. software is mistakenly echoing the response, and while so doing it is
  62. translating the response ESC into printable pair  ^[.
  63.     Now let's look a step deeper. I've omitted some escape sequences
  64. preceeding the text above.
  65.  
  66. ESC HESC J
  67. ESC K  <<< Main Menu >>>
  68. ESC K
  69. ESC K  1 About COIN, Registration, and Help Desk
  70. ESC K  2 Post Office (E-mail and File Management)
  71.     etc
  72. ESC K m = Main Menu       h = Help         
  73. ESC K
  74. ESC KESC Y6 ESC KYour Choice ==> ^[[?63;1;2;4;6;8;9;15;22c
  75.  
  76.     Here I've replaced literal Escape (\27) with "ESC " for
  77. visibility in mail. These are VT52 commands, not VT100 level or above.
  78. The host also echoes lots of control codes etc. The appearance is some
  79. VT52 style BBS menu grafted onto a Sun Unix system. All told, it's 
  80. a bit peculiar.
  81.     If you say SET TERM VT52 to MS-DOS Kermit then the results
  82. should be nicer.
  83.     Joe D.  
  84.     
  85. > I have to delete them with the backspace key to get back to the cursor.  
  86. >>        d) Whether you said SET DISPLAY 8-BIT or similar
  87. > I am using the Kermit defaults.
  88. >>        e) Whether coin is an ASCII or EBCDIC machine (and what kind of
  89. >>machine would be useful to know as well)
  90. > I don't know but the first thing you see is "SUN UNIX OS" then a login prompt.   
  91. > You login as GUEST without a password.
  92. >>
  93. >>        Joe D.
  94. > As I said I use C-Kermit for OS/2 on my home machine and login to COIN as a
  95. > VT220 terminal
  96. > using the C-Kermit defaults and I don't have this problem.  I am using the MS-DOS Kermit at
  97. > work over a LANMAN/WFWG Winsock TCP/IP network.
  98. > Thank for your help.